1168959f47913cd4d945c733a3109bcc6134d6ef,core/src/main/java/com/questdb/factory/JournalFactory.java,JournalFactory,bulkWriter,#JournalKey#,64
Before Change
@Override
public <T> JournalBulkWriter<T> bulkWriter(JournalKey<T> key) throws JournalException {
return new JournalBulkWriter<>(getConfiguration().createMetadata(key), key);
}
@Override
After Change
@Override
public <T> JournalBulkWriter<T> bulkWriter(JournalKey<T> key) throws JournalException {
return bulkWriter(getConfiguration().createMetadata(key), key);
}
@Override